aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog/[...slug].astro
blob: a142db49f8ec0d73292ff60b4f911fe19ad3efaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
import { type CollectionEntry, getCollection } from "astro:content";
import Layout from "../../layouts/PageLayout.astro";

export async function getStaticPaths() {
	const posts = await getCollection("blog");
	return posts.map((post) => ({
		params: { slug: post.slug },
		props: post,
	}));
}
type Props = CollectionEntry<"blog">;

const post = Astro.props;
const { Content, remarkPluginFrontmatter } = await post.render();
---

<style>
	.header {
		text-align: center;
	}
</style>

<Layout>
	<div class="header">
		<h1>Title</h1>
		<p>
			<small>
				Posted
				<time datetime="#">#</time>
				&nbsp;by&nbsp;Valentin Popov&nbsp;‐
				<strong>{remarkPluginFrontmatter.minutesRead}</strong>
			</small>
		</p>
	</div>
	<Content />
</Layout>